From 2b6ab1b8bd0739d21ac60be4bf919e1c354f3510 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 21 Dec 2015 23:23:05 -0500 Subject: [PATCH] Add parser tests for min-width and min-height --- testsuite/css/parser/min-height.css | 19 +++++++++++++++++++ testsuite/css/parser/min-height.ref.css | 19 +++++++++++++++++++ testsuite/css/parser/min-width.css | 19 +++++++++++++++++++ testsuite/css/parser/min-width.ref.css | 19 +++++++++++++++++++ 4 files changed, 76 insertions(+) create mode 100644 testsuite/css/parser/min-height.css create mode 100644 testsuite/css/parser/min-height.ref.css create mode 100644 testsuite/css/parser/min-width.css create mode 100644 testsuite/css/parser/min-width.ref.css diff --git a/testsuite/css/parser/min-height.css b/testsuite/css/parser/min-height.css new file mode 100644 index 0000000000..66769fe73c --- /dev/null +++ b/testsuite/css/parser/min-height.css @@ -0,0 +1,19 @@ +a { + min-height: initial; +} + +b { + min-height: inherit; +} + +c { + min-height: unset; +} + +d { + min-height: 0px; +} + +e { + min-height: 2em; +} diff --git a/testsuite/css/parser/min-height.ref.css b/testsuite/css/parser/min-height.ref.css new file mode 100644 index 0000000000..13657ed8b2 --- /dev/null +++ b/testsuite/css/parser/min-height.ref.css @@ -0,0 +1,19 @@ +a { + min-height: initial; +} + +b { + min-height: inherit; +} + +c { + min-height: unset; +} + +d { + min-height: 0; +} + +e { + min-height: 2em; +} diff --git a/testsuite/css/parser/min-width.css b/testsuite/css/parser/min-width.css new file mode 100644 index 0000000000..9f262abbee --- /dev/null +++ b/testsuite/css/parser/min-width.css @@ -0,0 +1,19 @@ +a { + min-width: initial; +} + +b { + min-width: inherit; +} + +c { + min-width: unset; +} + +d { + min-width: 0px; +} + +e { + min-width: 2em; +} diff --git a/testsuite/css/parser/min-width.ref.css b/testsuite/css/parser/min-width.ref.css new file mode 100644 index 0000000000..62bec56d6b --- /dev/null +++ b/testsuite/css/parser/min-width.ref.css @@ -0,0 +1,19 @@ +a { + min-width: initial; +} + +b { + min-width: inherit; +} + +c { + min-width: unset; +} + +d { + min-width: 0; +} + +e { + min-width: 2em; +} -- 2.30.2